home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 November / Electronic Clipper 1998-11.iso / Idea Source® / teaser.dir / 00062_Script_lockpick < prev    next >
Text File  |  1998-08-25  |  431b  |  31 lines

  1. on mousedown me
  2.   global picklock  
  3.   
  4.   if picklock=1 then 
  5.     cursor -1
  6.     set picklock=0
  7.     set the loc of sprite 16 to point(48, 447)
  8.     exit
  9.   end if  
  10.   
  11.   if picklock=0 then 
  12.     cursor 200
  13.     set picklock=1  
  14.   end if
  15. end
  16.  
  17. on exitframe me
  18.   global picklock  
  19.   if picklock=1 then
  20.     set the locv of sprite 16 to the mousev
  21.     set the loch of sprite 16 to the mouseh
  22.   end if
  23. end
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.